home *** CD-ROM | disk | FTP | other *** search
- *** orig\config.h Sat Jul 16 11:05:58 1994
- --- config.h Wed Jul 20 18:40:36 1994
- ***************
- *** 53,58 ****
- --- 53,90 ----
- #undef BOOLEAN
- #define BOOLEAN short
-
- + #if defined (linux)
- + #define UML_u '\xfc'
- + #define UML_o '\xf6'
- + #define UML_a '\xe4'
- + #define UML_U '\xdc'
- + #define UML_O '\xd6'
- + #define UML_A '\xc4'
- + #define UML_s '\xdf'
- + #else
- + #if defined (__TOS__)
- + #define UML_u '\x81'
- + #define UML_o '\x94'
- + #define UML_a '\x84'
- + #define UML_U '\x9a'
- + #define UML_O '\x99'
- + #define UML_A '\x8e'
- + #define UML_s '\x9e'
- + #else
- + #if defined (__MSDOG__) /* ohne Gewaehr! */
- + #define UML_u '\x81'
- + #define UML_o '\x94'
- + #define UML_a '\x84'
- + #define UML_U '\x9a'
- + #define UML_O '\x99'
- + #define UML_A '\x8e'
- + #define UML_s '\xe1'
- + #else
- + #error "Umlaute muessen noch angepasst werden!"
- + #endif
- + #endif
- + #endif
- +
- /* Dieses Headerfile ist haesslich - aber GNU autoconf lohnt sich fuer
- * Quarkoutfile nicht.
- */
- *** orig\quarkout.c Sat Jul 16 10:53:48 1994
- --- quarkout.c Wed Jul 20 18:05:18 1994
- ***************
- *** 408,420 ****
- switch(*p)
- {
- /* ### DANGER: Umlaute bei Portierung wandeln! */
- ! case 'ü': fputs("ue",f); count+=2; break;
- ! case 'ö': fputs("oe",f); count+=2; break;
- ! case 'ä': fputs("ae",f); count+=2; break;
- ! case 'Ü': fputs("Ue",f); count+=2; break;
- ! case 'Ö': fputs("Oe",f); count+=2; break;
- ! case 'Ä': fputs("Ae",f); count+=2; break;
- ! case 'ß': fputs("ss",f); count+=2; break;
- default: fputc(*p,f); count++; break;
- }
- p++;
- --- 408,420 ----
- switch(*p)
- {
- /* ### DANGER: Umlaute bei Portierung wandeln! */
- ! case UML_u: fputs("ue",f); count+=2; break;
- ! case UML_o: fputs("oe",f); count+=2; break;
- ! case UML_a: fputs("ae",f); count+=2; break;
- ! case UML_U: fputs("Ue",f); count+=2; break;
- ! case UML_O: fputs("Oe",f); count+=2; break;
- ! case UML_A: fputs("Ae",f); count+=2; break;
- ! case UML_s: fputs("ss",f); count+=2; break;
- default: fputc(*p,f); count++; break;
- }
- p++;
-